home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: delta / whiteline CD Series - delta.iso / tools / anwender / gnuplot / demo / mgr.dem < prev    next >
Text File  |  1995-11-25  |  2KB  |  61 lines

  1. #
  2. # $Id: mgr.dem,v 1.2 1994/03/13 14:58:30 alex Exp $
  3. #
  4. pause 0 "Watch some 3-splines"
  5. set samples 50
  6. set xlabel "Angle (deg)"
  7. set ylabel "Amplitude"
  8. set title "Brag-Reflex -- Peak only"
  9. plot "big_peak.dat" title "Rate" with errorbars, "big_peak.dat" t "Rate" w csplines
  10. pause -1 "You would draw smaller bars? <CR>"
  11. set bars small
  12. replot
  13. set bars large
  14. pause -1 "A 1-spline demo <CR>"
  15. set samples 100
  16. set xlabel "Time (sec)"
  17. set ylabel "Rate"
  18. set title "Ag 108 decay data"
  19. plot "silver.dat" t "rate" w errorb, "silver.dat" t "rate" w splines
  20. pause -1 "Make it smooter, use 3-splines <CR>"
  21. set samples 300
  22. plot "silver.dat" t "rate" w errorb, "silver.dat" t "rate" w csplines
  23. pause -1 "Make it smooter still with bezier <CR>"
  24. set samples 100
  25. plot "silver.dat" t "rate" w errorb, "silver.dat" t "rate" w sbezier
  26. pause -1 "You would rather use log-scales ? <CR>"
  27. set logscale y
  28. plot "silver.dat" t "rate" w errorb, "silver.dat" t "rate" w sbezier
  29. pause -1 "Errorbar demo <CR>"
  30. set nologscale
  31. set xlabel "Resistance [Ohm]"
  32. set ylabel "Power [W]"
  33. set title "UM1-Cell Power"
  34. n(x)=1.53**2*x/(5.67+x)**2
  35. plot [0:50] "battery.dat" t "Power" with xyerrorbars, n(x) t "Theory" w lines
  36. pause -1 "Would you like boxes? <CR>"
  37. plot [0:50] "battery.dat" t "Power" with boxxy, n(x) t "Theory" w lines
  38. pause -1 "Only X-Bars? <CR>"
  39. plot [0:50] "battery.dat" u 1:2:3 t "Power" w xerr, n(x) t "Theory" w lines
  40. pause -1 "Only Y-Bars? <CR>"
  41. plot [0:50] "battery.dat" u 1:2:4 t "Power" w yerr, n(x) t "Theory" w lines
  42. pause -1 "Logscaled? <CR>"
  43. set logscale y
  44. plot [0:50] "battery.dat" u 1:2:4 t "Power" w yerr, n(x) t "Theory" w lines
  45. pause -1 "X as well? <CR>"
  46. set logscale xy
  47. plot [1:50] "battery.dat" t "Power" w xyerr, n(x) t "Theory" w lines
  48. pause -1 "If you like bars without tics <CR>"
  49. set nologscale
  50. set bars small
  51. plot [0:50] "battery.dat" t "Power" with xyerrorbars, n(x) t "Theory" w lines
  52. pause -1 "X-Bars only <CR>"
  53. plot [0:50] "battery.dat" u 1:2:3 t "Power" w xerr, n(x) t "Theory" w lines
  54. pause -1 "Y-Bars only <CR>"
  55. plot [0:50] "battery.dat" u 1:2:4 t "Power" w yerr, n(x) t "Theory" w lines
  56. set bars large
  57.  
  58. set xlabel ""
  59. set ylabel ""
  60. set title ""
  61.